home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Games: Greatest Hits 1996
/
Amiga Games: Greatest Hits 1996.iso
/
rexx
/
frontsheet.mbrx
< prev
next >
Wrap
Text File
|
1996-06-28
|
1KB
|
54 lines
/*
** FrontSheet.mbrx Version 1.0
** By Tom Bampton
**
** © 1996 Eden Software
**
** This little script creates a front cover for your databases by making the
** first records name a title.
*/
/*
The path to MegaBook in case it isn't running
*/
MegaBookPath = 'MegaBook3:MegaBook'
/* Check if MegaBook is running, if not, run it */
if ~show('P', 'MEGABOOK.01') then do
address command
'run >nil: ' MegaBookPath
/* Wait for the ARexx port */
do 5 while ~show('P', 'MEGABOOK.01')
'sys:rexxc/waitforport MEGABOOK.01'
end
end
address 'MEGABOOK.01'
options results
New No_Confirm
GetString "Enter the title:"
Title = result
if RC = 5 then exit
SelectFile "Select file for cover..."
File = result
if RC = 5 then exit
/* Add an entry */
Add_Entry
/* Put in the title */
Put_Entry 1 '<' Title '>'
/* Blank out the unneeded fields */
Put_Entry 2 ''
Put_Entry 3 'Created by FrontSheet.mbrx'
Put_Entry 4 'Version 1.0'
Put_Entry 5 ''
Put_Entry 6 'By Tom Bampton'
Put_Entry 7 ''
Put_Entry 8 '© 1996 Eden Software'
/* Merge the file to create the title */
Merge File